home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InfoMagic Internet Tools 1995 April
/
Internet Tools.iso
/
osi
/
isode
/
dosisode
/
DOSISODE80.ZIP
/
ISODE8.WRK
/
UNIX
/
LIB
/
CUR
/
WPRINTW.C
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-03-31
|
224 b
|
11 lines
#include <curses.h>
int wprintw(here,fmt,a,b,c,d,e,f,g,h,i,j)
WINDOW *here;
char *fmt,*a,*b,*c,*d,*e,*f,*g,*h,*i,*j;
{
char buffer[128];
sprintf(buffer,fmt,a,b,c,d,e,f,g,h,i,j);
return(waddstr(here,buffer));
}